factorial sequence code in python with while loops

27

factorial sequence code in python with while loops -

num = int(input("enter a number: "))
 
fac = 1
i = 1
 
while i <= num:
fac = fac * i
i = i + 1
 
print("factorial of ", num, " is ", fac)

Comments

Submit
0 Comments